home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / LDB171.ARJ / EXAMP204.CPP < prev    next >
Text File  |  1992-05-12  |  309b  |  16 lines

  1.      // examp204.cpp - link with intbdr.obj and binder.obj
  2.  
  3.      #include  "intbdr.hpp"
  4.  
  5.      main()
  6.      {
  7.           IntBdr b(BDR_DDELETE|BDR_DNEW,5);
  8.  
  9.           for (int i = 0; b.insQNew(&i); i++);
  10.  
  11.           while (++b)
  12.                cout << *(int *)b << "\n";
  13.  
  14.           return 0;
  15.      }
  16.